fc0c6af1d37b8e99e8da0642451fd32a2421fe51,thunderbirdparser/src/org/sleuthkit/autopsy/thunderbirdparser/PstParser.java,PstParser,extractAttachments,#EmailMessage#PSTMessage#,197

Before Change


            try {
                PSTAttachment attach = msg.getAttachment(x);
                long size = attach.getAttachSize();
                if (size >= services.getFreeDiskSpace()) {
                    continue;
                }
                // both long and short filenames can be used for attachments

After Change


            try {
                PSTAttachment attach = msg.getAttachment(x);
                long size = attach.getAttachSize();
                long freeSpace = services.getFreeDiskSpace();
                if ((freeSpace != IngestMonitor.DISK_FREE_SPACE_UNKNOWN) && (size >= freeSpace)) {
                    continue;
                }
                // both long and short filenames can be used for attachments